home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / bind.0 < prev    next >
Text File  |  1996-09-01  |  3KB  |  80 lines

  1.  
  2. BIND(2)                    UNIX Programmer's Manual                    BIND(2)
  3.  
  4. NNAAMMEE
  5.      bbiinndd - bind a name to a socket
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  9.      ##iinncclluuddee <<ssyyss//ssoocckkeett..hh>>
  10.  
  11.      _i_n_t
  12.      bbiinndd(_i_n_t _s, _s_t_r_u_c_t _s_o_c_k_a_d_d_r _*_n_a_m_e, _i_n_t _n_a_m_e_l_e_n)
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      BBiinndd() assigns a name to an unnamed socket.  When a socket is created
  16.      with socket(2) it exists in a name space (address family) but has no name
  17.      assigned.  BBiinndd() requests that _n_a_m_e be assigned to the socket.
  18.  
  19. NNOOTTEESS
  20.      Binding a name in the UNIX domain creates a socket in the file system
  21.      that must be deleted by the caller when it is no longer needed (using
  22.      unlink(2)).
  23.  
  24.      The rules used in name binding vary between communication domains.  Con-
  25.      sult the manual entries in section 4 for detailed information.
  26.  
  27. RREETTUURRNN VVAALLUUEESS
  28.      If the bind is successful, a 0 value is returned.  A return value of -1
  29.      indicates an error, which is further specified in the global _e_r_r_n_o.
  30.  
  31. EERRRROORRSS
  32.      The bbiinndd() call will fail if:
  33.  
  34.      [EBADF]       _S is not a valid descriptor.
  35.  
  36.      [ENOTSOCK]    _S is not a socket.
  37.  
  38.      [EADDRNOTAVAIL]
  39.                    The specified address is not available from the local ma-
  40.                    chine.
  41.  
  42.      [EADDRINUSE]  The specified address is already in use.
  43.  
  44.      [EINVAL]      The socket is already bound to an address.
  45.  
  46.      [EACCES]      The requested address is protected, and the current user
  47.                    has inadequate permission to access it.
  48.  
  49.      [EFAULT]      The _n_a_m_e parameter is not in a valid part of the user ad-
  50.                    dress space.
  51.  
  52.      The following errors are specific to binding names in the UNIX domain.
  53.  
  54.      [ENOTDIR]     A component of the path prefix is not a directory.
  55.  
  56.      [ENAMETOOLONG]
  57.                    A component of a pathname exceeded {NAME_MAX} characters,
  58.                    or an entire path name exceeded {PATH_MAX} characters.
  59.  
  60.      [ENOENT]      A prefix component of the path name does not exist.
  61.  
  62.      [ELOOP]       Too many symbolic links were encountered in translating the
  63.                    pathname.
  64.  
  65.      [EIO]         An I/O error occurred while making the directory entry or
  66.  
  67.                    allocating the inode.
  68.  
  69.      [EROFS]       The name would reside on a read-only file system.
  70.  
  71.      [EISDIR]      An empty pathname was specified.
  72.  
  73. SSEEEE AALLSSOO
  74.      connect(2),  listen(2),  socket(2),  getsockname(2)
  75.  
  76. HHIISSTTOORRYY
  77.      The bbiinndd() function call appeared in 4.2BSD.
  78.  
  79. 4.2 Berkeley Distribution        June 4, 1993                                2
  80.